00001 <?php 00002 /*--------------------------------------------------------------------------+ 00003 This file is part of eStudy. 00004 statistics/classes/class.domainstatistik.inc.php 00005 - Modulgruppe: statistics 00006 - Beschreibung: Klasse zum berechnen und Ausgeben von Email-Domain Daten 00007 - Version: 1.HOE 10/01/06 00008 - Autor(en): George Parks Davie <killerg@gmx.net> 00009 +---------------------------------------------------------------------------+ 00010 This program is free software; you can redistribute it and/or 00011 modify it under the terms of the GNU General Public License 00012 as published by the Free Software Foundation; either version 2 00013 of the License, or any later version. 00014 +---------------------------------------------------------------------------+ 00015 This program is distributed in the hope that it will be useful, 00016 but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 GNU General Public License for more details. 00019 You should have received a copy of the GNU General Public License 00020 along with this program; if not, write to the Free Software 00021 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00022 +--------------------------------------------------------------------------*/ 00024 require_once (PATH_TO_ROOT."common/init.inc.php"); 00026 require_once (PATH_TO_ROOT."common/classes/class.modulautomation.inc.php"); 00034 class Photogallery_Automation extends ModulAutomation { 00035 00042 function Photogallery_Automation() { 00043 //Kontruktor von Modulautomation aufrufen 00044 parent::ModulAutomation(); 00045 $this->info = "FotoForum"; 00046 } 00047 00054 function dailyWork() { 00055 global $settings; 00056 $cnt = 0; 00057 while ($filename = @glob(PATH_TO_ROOT.$settings["upload_path"]."photogallery_temp/*.*")) { 00058 unlink($filename[0]); 00059 $cnt++; 00060 } 00061 $this->writeToLogFile("$cnt files deleted!"); 00062 return true; 00063 } 00064 // ********************************************************************** END OF CLASS 00065 00066 } 00067 ?>
1.5.8